projects
/
xen.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
283444b
)
Remus: ensure kernel modules are built before attempting to install
author
Keir Fraser
<keir.fraser@citrix.com>
Wed, 3 Feb 2010 09:38:00 +0000
(09:38 +0000)
committer
Keir Fraser
<keir.fraser@citrix.com>
Wed, 3 Feb 2010 09:38:00 +0000
(09:38 +0000)
them
make tools seems to skip straight to the install target.
Signed-off-by: Brendan Cully <brendan@cs.ubc.ca>
tools/remus/kmod/Makefile
patch
|
blob
|
history
diff --git
a/tools/remus/kmod/Makefile
b/tools/remus/kmod/Makefile
index e57e7bd899d0093a7f686edf7b3c82c669562f83..bc4eaf4d6a1f38c3fa9ee11824c0ae38151ecdfc 100644
(file)
--- a/
tools/remus/kmod/Makefile
+++ b/
tools/remus/kmod/Makefile
@@
-17,7
+17,7
@@
all:
if test -d $(KERNELDIR); then $(MAKE) -C $(KERNELDIR) SUBDIRS=`pwd` modules; fi
.PHONY: install
-install:
+install:
all
if test -d $(KERNELDIR); then $(MAKE) -C $(KERNELDIR) SUBDIRS=`pwd` INSTALL_MOD_PATH=$(DESTDIR) modules_install; fi
clean::